home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1995 June / MacFormat 25.iso / Shareware City / Developers / OutOfPhase1.1 Source / OutOfPhase Folder / AboutBox.h < prev    next >
Text File  |  1994-07-17  |  694b  |  35 lines

  1. /* AboutBox.h */
  2.  
  3. #ifndef Included_AboutBox_h
  4. #define Included_AboutBox_h
  5.  
  6. /* AboutBox depends on */
  7. /* MiscInfo.h */
  8. /* Definitions */
  9. /* Debug */
  10. /* Audit */
  11. /* Screen */
  12. /* EventLoop */
  13. /* Menus */
  14. /* TextEdit */
  15. /* WindowDispatcher */
  16. /* Memory */
  17. /* DataMunging */
  18. /* Main */
  19.  
  20. #include "Screen.h"
  21. #include "Menus.h"
  22. #include "EventLoop.h"
  23.  
  24. struct AboutBoxWindowRec;
  25. typedef struct AboutBoxWindowRec AboutBoxWindowRec;
  26.  
  27. /* show the about box.  this creates a new box if there isn't one, or raises the */
  28. /* window to the top if there already is one. */
  29. void                    ShowAboutBox(void);
  30.  
  31. /* close the about box.  does nothing if no about box is open */
  32. void                    HideAnyAboutBoxes(void);
  33.  
  34. #endif
  35.